home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / MPW_TOOL / TOOLS / TOOLS_WI / FAST_LEX / BZERO.C < prev    next >
Text File  |  1988-07-04  |  84b  |  10 lines

  1. bzero(x,size)
  2. char *x;
  3. int size;
  4. {
  5.  int i;
  6.  for(i=0;i<size;i++){
  7.   *(x+i) = 0;
  8.  }
  9. }
  10.